python requests token x-www-form-urlencoded

28

headers = {'Content-Type': 'application/x-www-form-urlencoded'}
response = requests.post(endpoint, data=request_body, headers=headers)
print(response)

Comments

Submit
0 Comments